Completed
Push — develop ( e0cef8...0aa347 )
by Xaver
31s
created

module.exports   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
c 1
b 0
f 0
nc 2
dl 0
loc 11
rs 9.4285
nop 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A 0 3 1
1
module.exports = function (gulp, plugins, config, env) {
2
  return function javascript() {
3
    return gulp.src('app.js')
4
      .pipe(env.development(plugins.sourcemaps.init()))
5
      .pipe(plugins.requirejsOptimize(env.production() ? config.requireJs.prod : config.requireJs.dev))
6
      .on('error', function () {
7
        this.emit('end');
8
      })
9
      .pipe(env.production(plugins.uglify({ output: { comments: 'all' } })))
10
      .pipe(env.development(plugins.sourcemaps.write('.', { addComment: true })))
11
      .pipe(gulp.dest(config.build));
12
  };
13
};
14